home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / daemons / switchd-.1 / switchd- / switchd / Makefile < prev    next >
Encoding:
Makefile  |  1996-04-02  |  221 b   |  18 lines

  1. PREFIX=    /usr/local
  2. BINDIR=    $(PREFIX)/sbin
  3.  
  4. CC=    gcc
  5. CFLAGS=    -g -O2
  6.  
  7. all:    switchd
  8.  
  9. install:    switchd
  10.         install -s -o root -m 0755 switchd $(BINDIR)
  11.  
  12. clean:
  13.         rm -f switchd switchd.o
  14.  
  15. switchd:    switchd.o
  16.  
  17. swtichd.o:    switchd.c
  18.